@charset "utf-8";
/* CSS Document */

        .contact-container {
            background: white;
            padding: 30px;
            width: 700px;           
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-left: auto;
            margin-right: auto;
        }

        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 8px;
            font-size: 26px;
        }

        .contact-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
            font-size: 15px;
        }

        /* 联系方式 */
        .contact-info {
            margin-left: 35px;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .comment-section h2 {
            font-size: 20px;
            color: #333;
            margin-top: 5px;
            margin-left: 20px;
            margin-right: 20px;       
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 14px;
            font-size: 15px;
            color: #444;
        }

        .info-item span {
            margin-left: 12px;
        }

        /* 评论区标题栏（右侧放管理员按钮） */
        .comment-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 5px;
            margin-left: 20px;
            margin-right: 20px;
            margin-bottom: 5px;
        }

        #adminLoginBtn {
            padding: 6px 14px;
            background: #ff7d00;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }

        /* 发表评论 */
        .comment-input-box {
            background: #fafbfc;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .comment-text {
            width: 97%;
            padding: 12px 14px;
            border: 1px solid #ddd;
            border-radius: 6px;
            min-height: 80px;
            margin-bottom: 12px;
            resize: vertical;
            outline: none;
        }

        .submit-btn {
            padding: 10px 22px;
            background: #2d8cf0;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        /* 评论列表 */
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .comment-item {
            background: #fafbfc;
            padding: 18px;
            border-radius: 10px;
            position: relative;
        }

        .comment-time {
            text-align: right;
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .content {
            color: #444;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        /* 管理员回复 */
        .admin-reply {
            background: #e9f7ff;
            padding: 12px;
            border-left: 3px solid #2d8cf0;
            margin-top: 10px;
            font-size: 14px;
            border-radius: 6px;
        }

        .admin-tag {
            color: #2d8cf0;
            font-weight: bold;
            margin-bottom: 4px;
        }

        /* 管理员按钮 */
        .admin-bar {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }

        .admin-btn {
            padding: 6px 12px;
            font-size: 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .reply-btn {
            background: #2d8cf0;
            color: white;
        }

        .delete-btn {
            background: #f53f3f;
            color: white;
        }

        /* 回复框 */
        .reply-box {
            margin-top: 12px;
            display: none;
        }

        .reply-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            margin-bottom: 8px;
        }

        .reply-submit {
            padding: 6px 16px;
            background: #2d8cf0;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .tip {
            margin-top: 12px;
            text-align: center;
            color: #00b42a;
            font-size: 14px;
        }
